[extension] Add Figma Starter extension to community catalog#3547
Merged
Conversation
Add figma-starter extension submitted by @vibhus to: - extensions/catalog.community.json (alphabetical order) - docs/community/extensions.md community extensions table Closes #3545 Assisted-by: GitHub Copilot (model: claude-sonnet-4.6, autonomous) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
mnriem
previously approved these changes
Jul 15, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the Figma Starter community extension for discovery and documentation.
Changes:
- Adds extension metadata to the community catalog.
- Adds the extension to the community documentation table.
Show a summary per file
| File | Description |
|---|---|
extensions/catalog.community.json |
Adds the Figma Starter catalog entry. |
docs/community/extensions.md |
Documents Figma Starter alphabetically. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
- Review effort level: Medium
…talog entry Assisted-by: GitHub Copilot (model: claude-sonnet-4.5, autonomous)
…fallback The PowerShell update-agent-context.ps1 script falls back to Python when PS 5.1 (which lacks ConvertFrom-Yaml and cannot parse YAML as JSON) reads the extension config. It previously launched Python twice: once to verify that Python 3 + PyYAML were available, and once to run a temp script file that parsed the YAML and printed JSON. On Windows CI each Python startup—plus potential Windows Defender scanning of a freshly-created .tmp file—can take several seconds. With two launches plus PS 5.1's own startup time the subprocess.run(timeout=30) threshold in test_powershell_script_discovers_nested_plan was regularly exceeded, causing the CI job to fail. Replace the two-phase approach with a single Python -c one-liner that verifies PyYAML availability, parses the YAML file, and emits JSON in one process. This halves the number of Python launches and eliminates the temp file entirely, keeping total execution time well under 30 s. Assisted-by: GitHub Copilot (model: claude-sonnet-4.5, autonomous)
…zation state The runtime optimization (one-liner Python fallback, stderr suppression) was unrelated to the Figma Starter catalog addition (issue #3545) and removed the actionable PyYAML/parse diagnostic messages. Revert the file so the PR only contains the catalog-entry and documentation changes. Assisted-by: GitHub Copilot (model: claude-sonnet-4.6, autonomous)
mnriem
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the
figma-startercommunity extension submitted by@vibhusin #3545.What changed
extensions/catalog.community.json— newfigma-starterentry inserted in alphabetical orderdocs/community/extensions.md— new row for Figma Starter inserted in alphabetical orderValidation results
^[a-z][a-z0-9-]*$)figma-starterX.Y.Z)1.0.0extension.ymlpresentREADME.mdpresentLICENSEpresentCloses #3545
cc
@vibhusPosted on behalf of
@mnriemby GitHub Copilot (model: claude-sonnet-4.6, autonomous)